home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / strategy / colour-y.tgz / colour-y.tar / yahtzee / Makefile < prev    next >
Makefile  |  1995-10-29  |  224b  |  18 lines

  1. CFLAGS =
  2.  
  3. OBJ = computer.o main.o
  4.  
  5. LIBS = -lncurses -ltermcap
  6.  
  7. BIN = yahtzee
  8.  
  9. CFLAGS = -O2 -I/usr/include/ncurses
  10.  
  11. $(BIN): $(OBJ)
  12.     cc -o $@ $(OBJ) -lncurses -ltermcap
  13.  
  14. clean:
  15.     rm -f $(OBJ) $(BIN)
  16.  
  17. $(OBJ): yahtzee.h config.h
  18.